home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / intmail2 / popdemo.dpr < prev    next >
Encoding:
Text File  |  1999-07-20  |  315 b   |  17 lines

  1. program popdemo;
  2.  
  3. uses
  4.   Forms,
  5.   popmain in 'popmain.pas' {PopForm},
  6.   popview in 'popview.pas' {MsgViewDlg},
  7.   msabout in 'msabout.pas' {AboutDlg},
  8.   popsu in 'popsu.pas' {SetupDlg};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TPopForm, PopForm);
  15.   Application.Run;
  16. end.
  17.